home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / GRAPHICS / 3DTOSH2.ZIP / MPGUI / INCLUDE / GUIAPP.H next >
Encoding:
C/C++ Source or Header  |  1996-04-15  |  851 b   |  35 lines

  1.  
  2. // guiapp.h
  3. //
  4. // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
  5.  
  6. #ifndef __GUIAPP_H__
  7. #define __GUIAPP_H__
  8.  
  9. #include "stdgfx.h"
  10. #include "guimdi.h"
  11. #include "guifloat.h"
  12. #include "guitbar.h"
  13. #include "guicmdlg.h"
  14.  
  15. class GUIAPP : public GUIOBJECT
  16.   {
  17.     protected :
  18.       VOID GoDOS ( GUIFRAME *MainWindow, DISPLAYDATA *Data );
  19.       VOID GoWinSDI ( GUIFRAME *MainWindow, DISPLAYDATA *Data );
  20.       VOID GoWinMDI ( GUIFRAME *MainWindow, DISPLAYDATA *Data );
  21.       VOID GoOS2 ( GUIFRAME *MainWindow, DISPLAYDATA *Data );
  22.       VOID GoXWindow ( GUIFRAME *MainWindow, DISPLAYDATA *Data );
  23.       VOID GoMotif ( GUIFRAME *MainWindow, DISPLAYDATA *Data );   
  24.  
  25.     public :
  26.       GUIAPP ();
  27.       virtual ~GUIAPP ();
  28.  
  29.       VOID Run ( DISPLAYDATA *Data, GUIFRAME *MainWindow );
  30.   }; // End of GUIAPP
  31.  
  32.  
  33. #endif
  34.  
  35.